home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / jmod310.zip / SHOW < prev    next >
Text File  |  1991-11-30  |  449b  |  20 lines

  1. #
  2. #    Created    25-MAR-1990        Richard B. Johnson
  3. #
  4. #    Revised 02-JAN-1991        Richard B. Johnson
  5. #
  6. #    Changed the warning-level to /W4 in the Microsoft CL command to
  7. #    be compatible with Microsoft's C600 highest level of error checking.
  8. #
  9. #
  10.     headers = show
  11.         objects = show.obj
  12.  
  13.     cc = CL /Gs /J /AS /c /Ois /FPi /W4 $*.c
  14.  
  15. show.obj:        $(headers) $*.c
  16.                         $(cc)
  17.  
  18. show.exe:        $(headers) $(objects)
  19.             LINK/EXEPACK $*;
  20.